Re: [SQL] newline in text field
От | Herouth Maoz |
---|---|
Тема | Re: [SQL] newline in text field |
Дата | |
Msg-id | l0311070ab26b39b4e509@[147.233.159.109] обсуждение исходный текст |
Ответ на | newline in text field ("Sergei M. Suntsov" <serge@uic.nsu.ru>) |
Список | pgsql-sql |
At 13:50 +0200 on 8/11/98, Sergei M. Suntsov wrote: > Hello > I would like to insert into text field strings separated by newline > character ('\n') using psql. How should I quote newline characters if it > is possible ? > Thanx in advance. > Sergei It depends on the context. If you want to put it in an insert string, you don't have to quote it. You do something like: INSERT INTO my_table ( text_field ) VALUES ( '...And yet by heaven I swear my love as rare As any she belied with false compare!' ); If you are doing it within COPY, where newline has significance as a delimiter, you should put a backslash before it: COPY my_table FROM stdin; ...And yet by heaven I swear my love as rare\ As any she belied with false compare! \. Herouth -- Herouth Maoz, Internet developer. Open University of Israel - Telem project http://telem.openu.ac.il/~herutma
В списке pgsql-sql по дате отправления: